home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 April / EnigmA AMIGA RUN 06 (1996)(G.R. Edizioni)(IT)[!][issue 1996-04][Skylink CD V].iso / earcd / utilgfx / collectr.lha / Collector / Install-Collector < prev    next >
Text File  |  1995-10-05  |  791b  |  47 lines

  1. ; This is test of many of the features of the Installer
  2. ; Prints out debugging info if run from CLI
  3.  
  4.  
  5. (set @default-dest
  6.     (askdir
  7.         (prompt "Where do you want to put the Collector directory ?")
  8.         (help @askdir-help)
  9.         (default "SYS:")
  10.     )
  11. )
  12.  
  13. (set @default-dest (tackon @default-dest "Collector"))
  14.  
  15. (copyfiles
  16.     (prompt "Copying Collector.prefs to S:")
  17.     (source "S/Collector.Prefs")
  18.     (dest "S:")
  19. )
  20.  
  21. (makedir @default-dest
  22.     (infos)
  23. )
  24.  
  25. (copyfiles
  26.     (prompt "Copying Collector to %s" @default-dest)
  27.     (help @copyfiles-help)
  28.     (source "Collector")
  29.     (dest @default-dest)
  30.     (infos)
  31.     (all)
  32. )
  33.  
  34. (copyfiles
  35.     (prompt "Copying AMOS.Library to LIBS:")
  36.     (source "Libs/AMOS.Library")
  37.     (dest "LIBS:")
  38. )
  39.  
  40. (copyfiles
  41.     (prompt "Copying Helvetica.Font to FONTS:")
  42.     (source "Fonts")
  43.     (dest "FONTS:")
  44.     (all)
  45. )
  46.  
  47.